/* CSS Variables based on user input */
:root {
--color-red: #E71119;      
--color-darkblue: #002045; 
--color-white: #ffffff;
--color-lightgray: #f8f8f8; 
--color-dim-white: rgba(255, 255, 255, 0.95); 
--font-family-sans: 'Inter', sans-serif;
--font-family-heading: 'Times New Roman', serif;
}

/* Global Styles */
body {
font-family: var(--font-family-sans);
margin: 0;
padding-top: 80px;
color: var(--color-darkblue);
line-height: 1.6;
background-color: var(--color-white);
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
h1, h2, h3, h4, h5 {
font-weight: 900;
margin-top: 0;
color: var(--color-darkblue); 
font-family: var(--font-family-heading);
}
.text-red { color: var(--color-red); }

/* ============
3. NAVBAR SECTION
=========== */
.navbar {
position: fixed;
top: 0;
width: 100%;
height: 80px;
z-index: 1000;
background-color: var(--color-white);
transition: background-color 0.3s, box-shadow 0.3s;
box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.navbar.scrolled {
background-color: var(--color-dim-white);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}
.navbar .container {
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-img {
height: 48px;
width: 170px;
display: block;
}
nav {
flex-grow: 1;
display: flex;
justify-content: center;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
position: relative;
}
nav ul li a {
color: var(--color-darkblue);
text-decoration: none;
padding: 10px 15px;
display: block;
font-weight: 700;
transition: color 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
color: var(--color-red);
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
background-color: var(--color-white);
min-width: 250px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 10;
border-top: 3px solid var(--color-red);
border-radius: 4px;
overflow: hidden;
text-align: left;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: var(--color-darkblue);
padding: 12px 15px;
font-weight: 700;
font-size: 0.95rem;
transition: background-color 0.2s;
}
.dropdown-content a:hover {
background-color: var(--color-lightgray);
color: var(--color-red);
}
.btn {
padding: 12px 25px;
text-decoration: none;
font-weight: 700;
border: 2px solid transparent;
border-radius: 10px;
transition: 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap;
}
.btn-cta {
background-color: var(--color-red);
color: var(--color-white);
border-color: var(--color-red);
box-shadow: 0 4px 8px rgba(231, 17, 25, 0.3);
}
.btn-cta:hover {
background-color: var(--color-darkblue);
border-color: var(--color-darkblue);
color: var(--color-white);
box-shadow: 0 4px 12px rgba(0, 32, 69, 0.2);
}
.menu-toggle {
background: none;
border: none;
color: var(--color-darkblue);
font-size: 1.8rem;
cursor: pointer;
display: none;
transition: color 0.3s ease;
}
.menu-toggle:hover {
color: var(--color-red);
}
.nav-actions {
display: flex;
align-items: center;
gap: 10px;
}
@media (max-width: 1024px) {
.navbar {
height: 70px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 12px;
font-size: 0.95rem;
}
.btn {
padding: 10px 20px;
font-size: 0.9rem;
}
.nav-actions {
gap: 8px;
}
}
/* Responsive Styles */
@media (max-width: 991px) {
.navbar .container {
padding: 0 15px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 10px;
font-size: 0.95rem;
}
}
@media (max-width: 768px) {
.navbar {
height: auto;
padding: 15px 0;
}
.navbar .container {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-white);
border-top: 2px solid var(--color-red);
display: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
nav.active {
display: block;
}
nav ul {
flex-direction: column;
width: 100%;
text-align: left;
}
nav ul li a {
padding: 14px 25px;
border-bottom: 1px solid #eee;
}
.dropdown-content {
position: relative;
left: 0;
top: 0;
transform: none;
min-width: 100%;
box-shadow: none;
border: none;
}
.menu-toggle {
display: block; 
}
}
@media (max-width: 480px) {
.logo-img {
height: 60px;
width: 120px;
}
.nav-actions .btn-cta { 
display: none;
}}









/* ============
HERO SECTION 
============= */
.hero-section {
position: relative;
height: 90vh;
min-height: 400px;
background-image: url('images/contact\ us\ hero.webp'); 
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
color: #fff;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
}
.hero-content h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 1rem;
text-transform: uppercase; 
letter-spacing: 2px;
color: white;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}
@media (max-width: 1024px) {
.hero-section {
height: 70vh;
background-attachment: scroll;
padding: 5rem 1rem;
}
.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero-content p {
font-size: 1.05rem;
margin-bottom: 1.5rem;
}
}
@media (max-width: 768px) {
.hero-section {
height: auto;
min-height: 350px;
padding: 4rem 1.2rem;
text-align: center;
background-position: center center;
}
.hero-content {
padding: 0 10px;
}
.hero-content h1 {
font-size: 1.9rem;
line-height: 1.3;
margin-bottom: 1rem;
letter-spacing: 1px;
}
.hero-content p {
font-size: 0.95rem;
margin-bottom: 1.2rem;
}
}
@media (max-width: 480px) {
.hero-section {
padding: 3.5rem 1rem;
}
.hero-content h1 {
font-size: 1.6rem;
}
.hero-content p {
font-size: 0.9rem;
}
}








/* === CONTACT & CTA SECTION STYLES === */
.contact-section {
background-color: var(--color-white); 
padding: 80px 0;
overflow: hidden;
border-top: 1px solid #eee; 
}
.contact-grid {
max-width: 1200px; 
margin: 0 auto;
padding: 0 20px; 
display: grid;
grid-template-columns: 1.1fr 0.9fr; 
gap: 80px;
align-items: center;
}
.contact-info {
color: var(--color-darkblue); 
padding: 20px 0;
}
.contact-heading {
font-size: clamp(2.3rem, 3.5vw, 3.3rem);
font-weight: 900;
line-height: 1.2;
margin-bottom: 20px;
}
.contact-description {
font-size: 1.1rem;
line-height: 1.6;
color: #555; 
margin-bottom: 40px;
}
.contact-details {
margin-bottom: 40px;
}
.detail-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.detail-item i {
font-size: 1.5rem;
color: var(--color-red); 
margin-right: 15px;
width: 25px;
text-align: center;
}
.detail-text {
font-size: 1rem;
color: var(--color-darkblue); 
text-decoration: none;
transition: color 0.3s ease;
}
.detail-item a:hover {
color: var(--color-red);
}
.social-links {
margin-top: 30px;
display: flex;
}
.social-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 45px;
height: 45px;
border-radius: 50%;
background-color: rgba(0, 32, 69, 0.1); 
color: var(--color-darkblue); 
font-size: 1.1rem;
margin-right: 15px;
transition: background-color 0.3s, color 0.3s;
}
.social-icon:hover {
background-color: var(--color-red);
color: var(--color-white);
}
.contact-form-wrapper {
background-color: var(--color-white);
padding: 40px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(1, 32, 71, 0.505);
transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s;
position: relative; 
z-index: 1;
}
.contact-form-wrapper:hover {
transform: translateY(-10px) scale(1.02);
box-shadow:
0 0 20px 4px rgba(231, 17, 25, 0.5), 
0 0 20px 4px rgba(0, 32, 69, 0.5), 
0 15px 40px rgba(0, 0, 0, 0.2); 
z-index: 10;
}
.form-title {
font-size: 1.8rem;
font-weight: 900;
color: var(--color-darkblue);
margin-bottom: 30px;
text-align: center;
font-family: 'Times New Roman', serif;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 0.9rem;
font-weight: 700;
color: var(--color-darkblue);
margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
width: 93%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
color: #333;
background-color: #f9f9f9;
transition: border-color 0.3s, box-shadow 0.3s;
resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: var(--color-red); 
box-shadow: 0 0 0 3px rgba(231, 17, 25, 0.2);
outline: none;
background-color: var(--color-white);
}
.btn-submit {
width: 100%;
padding: 15px;
border: none;
border-radius: 8px;
background-color: var(--color-red);
color: var(--color-white);
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-submit:hover {
background-color: #c90f16; 
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(231, 17, 25, 0.4);
}
.contact-form select {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
color: #333;
background-color: #f9f9f9;
transition: border-color 0.3s, box-shadow 0.3s;
cursor: pointer;
}
.contact-form select:focus {
border-color: var(--color-red);
box-shadow: 0 0 0 3px rgba(231, 17, 25, 0.2);
outline: none;
background-color: var(--color-white);
}
@media (max-width: 768px) {
.contact-form select {
font-size: 0.95rem;
padding: 12px;
border-radius: 6px;
}
}
@media (max-width: 480px) {
.contact-form select {
font-size: 0.9rem;
padding: 10px;
border-radius: 6px;
}
}
@media (max-width: 992px) {
.contact-grid {
grid-template-columns: 1fr; 
gap: 60px;
}
.contact-info {
padding: 0 20px; 
}
.contact-form-wrapper {
margin: 0 20px;
padding: 30px;
}
}
@media (max-width: 600px) {
.contact-section {
padding: 60px 0;
}
.contact-heading {
font-size: 2rem;
}
.contact-description {
font-size: 1rem;
margin-bottom: 30px;
}
.contact-form-wrapper {
margin: 0 15px;
padding: 25px;
}
}





/* MAP SECTION STYLES */
.map-section {
background-color: var(--color-white);
position: relative;
overflow: hidden;
}

.map-container {
padding: 0 80px 50px 80px;
height: 420px;
position: relative;
border-radius: 20px;
overflow: hidden; 
}

.map-container iframe {
border: none;
width: 100%;
height: 100%;
display: block;
border-radius: 20px; 
}

@media (max-width: 768px) {
.map-container {
height: 350px;
padding: 0 20px 20px 20px;
}
}







/* === FOOTER === */
.main-footer {
position: relative;
padding-top: 40px;
color: #ffffff;
overflow: hidden;
background-color: #000000eb;
}
.footer-video-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.footer-video {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.2;
}
.footer-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.041);
z-index: 1;
}
.footer-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(4, 1fr); 
gap: 40px;
padding-bottom: 40px;
margin-left: auto;
margin-right: auto;
max-width: 1300px;
 width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 30px;
}
.footer-col {
padding: 0;
}
.footer-logo-img {
max-width: 190px;
height: auto;
display: block;
margin-left: 0;
margin-top: 0;
border-radius: 10px;
}
.footer-logo {
margin-bottom: 10px;
}
.footer-tagline {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
margin-bottom: 30px;
}
.footer-heading {
font-size: 1.1rem;
font-weight: 700;
color: #E71119;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Times New Roman', serif;
}
.footer-contact-details {
margin-bottom: 30px;
}
.footer-contact-details p,
.footer-contact-details a {
display: block;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 5px;
transition: color 0.3s;
}
.footer-contact-details a:hover {
color: #E71119;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s, transform 0.3s;
display: inline-block;
}
.footer-links a:hover {
color: #E71119;
transform: translateX(5px);
}
.footer-socials .footer-social-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 1rem;
margin-right: 10px;
transition: background-color 0.3s;
}
.footer-socials .footer-social-icon:hover {
background-color: #E71119;
}
.footer-copyright {
position: relative;
z-index: 2;
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copyright p {
margin: 0;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: 1fr 1fr;
gap: 30px;
text-align: left;
}
.footer-logo-img {
margin: 0 auto;
align-items: left !important;
}
.footer-socials {
justify-content: center;
}
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr; 
gap: 30px;
}
.footer-logo-img {
margin: 0 auto 15px;
align-items: left !important;
}
.footer-tagline {
margin-bottom: 20px;
}
.footer-links a {
font-size: 0.95rem;
}
.footer-heading {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.footer-socials .footer-social-icon {
width: 36px;
height: 36px;
font-size: 0.9rem;
}
.footer-copyright p {
font-size: 0.8rem;
}
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.footer-content {
grid-template-columns: 1fr;
}
}
.reach-item {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.reach-icon {
font-size: 20px;
color: #E71119; 
margin-right: 10px;
margin-top: 3px;
}
.reach-text {
margin: 0;
color: white;
line-height: 1.6;
font-size: 0.95rem;
margin-top: 5px;
}
.reach-email {
color: white;
text-decoration: none;
font-size: 0.95rem;
transition: 0.3s;
margin-top: 5px;
}
.reach-email:hover {
color: #E71119;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr !important;
text-align: left !important;
}
.footer-col,
.footer-links,
.footer-links li,
.footer-links a,
.reach-item,
.reach-text,
.reach-email,
.footer-socials,
.footer-logo-bottom,
.footer-logo-img {
text-align: left !important;
justify-content: flex-start !important;
align-items: flex-start !important;
margin-left: 0 !important;
}
.footer-socials {
display: flex;
gap: 10px;
margin-top: 10px;
}
.footer-logo-bottom img {
margin-left: 0 !important;
}
}

@media (max-width: 991px) {
.navbar .container {
padding: 0 15px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 10px;
font-size: 0.95rem;
}
.btn-cta {
padding: 10px 20px;
font-size: 0.9rem;
}
}
@media (max-width: 768px) {
.navbar {
height: auto;
padding: 15px 0;
}
.navbar .container {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-white);
border-top: 2px solid var(--color-red);
display: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
nav.active {
display: block;
}
nav ul {
flex-direction: column;
width: 100%;
text-align: left;
}
nav ul li a {
padding: 14px 25px;
border-bottom: 1px solid #eee;
}
.dropdown-content {
position: relative;
left: 0;
top: 0;
transform: none;
min-width: 100%;
box-shadow: none;
border: none;
}
.menu-toggle {
display: block; 
}
.btn-cta {
padding: 8px 16px;
font-size: 0.85rem;
}
.hero-content h1 {
font-size: 2.5rem;
}
.service-block {
grid-template-columns: 1fr;
gap: 2rem;
min-height: auto;
}
.service-block.reverse {
grid-template-columns: 1fr;
}
.service-feature {
position: static;
max-height: none;
}
.service-feature.right {
border-right: none;
border-left: 4px solid var(--color-red);
}
.service-feature.right .service-icon {
margin-left: 0;
}
.service-feature.right h3,
.service-feature.right p {
text-align: left;
}
.service-feature.right a {
float: none;
}
.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}
.footer-col-info {
grid-column: span 1;
}
.main-footer {
padding-top: 60px;
}
}
@media (max-width: 480px) {
.logo-img {
height: 60px;
width: 120px;
}
.nav-actions .btn-cta { 
display: none;
}
.hero-content h1 {
font-size: 2rem;
}
.services-intro h2 {
font-size: 2rem;
}
}




















